time.Time.unixSec (method)

13 uses

	time (current package)
		format.go#L1364: 		name, offset, _, _, _ := local.lookup(t.unixSec())
		format.go#L1380: 		offset, ok := local.lookupName(zoneName, t.unixSec())
		format_rfc3339.go#L146: 		if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
		time.go#L178: func (t *Time) unixSec() int64 { return t.sec() + internalToUnix }
		time.go#L467: 	sec := t.unixSec()
		time.go#L487: 	sec := t.unixSec()
		time.go#L1164: 	name, offset, _, _, _ = t.loc.lookup(t.unixSec())
		time.go#L1174: 	_, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
		time.go#L1193: 	return t.unixSec()
		time.go#L1202: 	return t.unixSec()*1e3 + int64(t.nsec())/1e6
		time.go#L1211: 	return t.unixSec()*1e6 + int64(t.nsec())/1e3
		time.go#L1221: 	return (t.unixSec())*1e9 + int64(t.nsec())
		time.go#L1316: 	} else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {